home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / cron.daily / aptitude < prev    next >
Encoding:
Text File  |  2006-09-11  |  314 b   |  12 lines

  1. #!/bin/sh
  2.  
  3. bak=/var/backups
  4.  
  5. # Shamelessly ripped from /etc/cron.daily/standard
  6. if test -f /var/lib/aptitude/pkgstates && cd $bak ; then
  7.     if ! cmp -s aptitude.pkgstates.0 /var/lib/aptitude/pkgstates ; then
  8.         cp -p /var/lib/aptitude/pkgstates aptitude.pkgstates
  9.         savelog -c 7 aptitude.pkgstates > /dev/null
  10.     fi
  11. fi
  12.